Get Transactions
GET/api/v1/transactions
PRO_PLUS [10 Credits]
Request
Query Parameters
Possible values: [TxTypeLegacyTransaction
, TxTypeValueTransfer
, TxTypeFeeDelegatedValueTransfer
, TxTypeFeeDelegatedValueTransferWithRatio
, TxTypeValueTransferMemo
, TxTypeFeeDelegatedValueTransferMemo
, TxTypeFeeDelegatedValueTransferMemoWithRatio
, TxTypeAccountUpdate
, TxTypeFeeDelegatedAccountUpdate
, TxTypeFeeDelegatedAccountUpdateWithRatio
, TxTypeSmartContractDeploy
, TxTypeFeeDelegatedSmartContractDeploy
, TxTypeFeeDelegatedSmartContractDeployWithRatio
, TxTypeSmartContractExecution
, TxTypeFeeDelegatedSmartContractExecution
, TxTypeFeeDelegatedSmartContractExecutionWithRatio
, TxTypeCancel
, TxTypeFeeDelegatedCancel
, TxTypeFeeDelegatedCancelWithRatio
, TxTypeChainDataAnchoring
, TxTypeFeeDelegatedChainDataAnchoring
, TxTypeFeeDelegatedChainDataAnchoringWithRatio
, TxTypeEthereumAccessList
, TxTypeEthereumDynamicFee
]
transaction type
start-number of block-range
end-number of block-range
Possible values: >= 1
Results page you want to retrieve (1..N)
Number of records per page, min: 1, Max: 2000
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
Possible values: [Account Update
, Fee Delegated Account Update
, Fee Delegated Account Update With Ratio
, Cancel
, Fee Delegated Cancel
, Fee Delegated Cancel With Ratio
, Smart Contract Deploy
, Fee Delegated Smart Contract Deploy
, Fee Delegated Smart Contract Deploy With Ratio
, Smart Contract Execution
, Fee Delegated Smart Contract Execution
, Fee Delegated Smart Contract Execution With Ratio
, Legacy
, Chain Data Anchoring
, Fee Delegated Chain Data Anchoring
, Fee Delegated Chain Data Anchoring With Ratio
, Value Transfer
, Fee Delegated Value Transfer
, Fee Delegated Value Transfer With Ratio
, Value Transfer Memo
, Fee Delegated Value Transfer Memo
, Fee Delegated Value Transfer Memo With Ratio
, Ethereum Access List
, Ethereum Dynamic Fee
]
status
object
required
Possible values: [Success
, Fail
]
paging
object
required
property
object
{
"results": [
{
"transaction_hash": "string",
"transaction_index": 0,
"block_id": 0,
"datetime": "2025-04-16T01:16:41.323Z",
"from": "string",
"to": "string",
"fee_payer": "string",
"transaction_type": "Account Update",
"amount": 0,
"transaction_fee": 0,
"status": {
"status": "Success",
"fail_message": "string"
},
"method_id": "string",
"signature": "string",
"effective_gas_price": 0,
"burnt_fees": 0
}
],
"paging": {
"total_count": 0,
"current_page": 0,
"last": true,
"total_page": 0
},
"property": {}
}